Message Application Programming Interface - significado y definición. Qué es Message Application Programming Interface
Diclib.com
Diccionario ChatGPT
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:

Traducción y análisis de palabras por inteligencia artificial ChatGPT

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

Qué (quién) es Message Application Programming Interface - definición

BINARY INTERFACE BETWEEN TWO PROGRAM UNITS THAT ACTS AS A BRIDGE
Application Binary Interface; EABI; Embedded Application Binary Interface; Embedded-application binary interface; Embedded-Application Binary Interface; C ABI
  • ISVs]].
  • A high-level comparison of in-kernel and kernel-to-userspace APIs and ABIs

Messaging Application Programming Interface         
MICROSOFT WINDOWS EMAIL API
Mail API; Messaging API; Outlook exchange transport protocol; OETP; MAPI/RPC; Messaging Application Programming Interface; Mapi
<messaging> (MAPI) A messaging architecture and a client interface component for applications such as {electronic mail}, scheduling, calendaring and document management. As a messaging architecture, MAPI provides a consistent interface for multiple application programs to interact with multiple messaging systems across a variety of hardware platforms. MAPI provides better performance and control than {Simple MAPI}, Common Messaging Calls (CMC) or the {Active Messaging Library}. It has a comprehensive, open, dual-purpose interface, integrated with Microsoft Windows. MAPI can be used by all levels and types of client application and "service providers" - driver-like components that provide a MAPI interface to a specific messaging system. For example, a word processor can send documents and a workgroup application can share and store different types of data using MAPI. MAPI separates the programming interfaces used by the client applications and the service providers. Every component works with a common, Microsoft Windows-based user interface. For example, a single messaging client application can be used to receive messages from fax, a bulletin board system, a host-based messaging system and a LAN-based system. Messages from all of these systems can be delivered to a single "universal Inbox". MAPI is aimed at the powerful, new market of workgroup applications that communicate with such different messaging systems as fax, DEC All-In-1, voice mail and public communications services such as AT&T Easylink Services, CompuServe and MCI MAIL. Because workgroup applications demand more of their messaging systems, MAPI offers much more than basic messaging in the programming interface and supports more than local area network (LAN)-based messaging systems. Applications can, for example, format text for a single message with a variety of fonts and present to their users a customised view of messages that have been filtered, sorted or preprocessed. MAPI is built into Windows 95 and Windows NT and can be used by 16-bit and 32-bit Windows applications. The programming interface and subsystem contained in the MAPI DLL provide objects which conform to the {Component Object Model}. MAPI includes standard messaging client applications that demonstrate different levels of messaging support. MAPI provides cross platform support through such industry standards as SMTP, X.400 and Common Messaging Calls. MAPI is the messaging component of {Windows Open Services Architecture} (WOSA). [Correct expansion? Relatonship with Microsoft?] (1997-12-03)
Application Program Interface         
  • Univac 1108]], the goal of their API was to make [[hardware independent]] programs possible.<ref name="CottonGreatorex1968" />
SOFTWARE INTERFACE BETWEEN COMPUTERS AND/OR PROGRAMS
Application-programming interface; Application Programming Interfaces; Application-level interaction; Application Program Interface; Api; API documentation; API Documentation; Application Programming Interface (API); Application program interface; Applications programming interface; Application programming interfaces; Applications Programming Interface; Application program interfaces; Programming interface; Software API; Advanced programming interface; Api.php; API.php; Application Programming Interface; API (redirects and miscellaneous); Development API; API compatibility; API-compatible; API function; API economy; Api economy; Application programming interface; Application Programmer's Interface; Application Programmers Interface; Hyrum's Law; Hyrum's law
<programming> (API, or "application programming interface") The interface (calling conventions) by which an {application program} accesses operating system and other services. An API is defined at source code level and provides a level of abstraction between the application and the kernel (or other privileged utilities) to ensure the portability of the code. An API can also provide an interface between a {high level language} and lower level utilities and services which were written without consideration for the calling conventions supported by compiled languages. In this case, the API's main task may be the translation of parameter lists from one format to another and the interpretation of call-by-value and call-by-reference arguments in one or both directions. (1995-02-15)
Applications Programming Interface         
  • Univac 1108]], the goal of their API was to make [[hardware independent]] programs possible.<ref name="CottonGreatorex1968" />
SOFTWARE INTERFACE BETWEEN COMPUTERS AND/OR PROGRAMS
Application-programming interface; Application Programming Interfaces; Application-level interaction; Application Program Interface; Api; API documentation; API Documentation; Application Programming Interface (API); Application program interface; Applications programming interface; Application programming interfaces; Applications Programming Interface; Application program interfaces; Programming interface; Software API; Advanced programming interface; Api.php; API.php; Application Programming Interface; API (redirects and miscellaneous); Development API; API compatibility; API-compatible; API function; API economy; Api economy; Application programming interface; Application Programmer's Interface; Application Programmers Interface; Hyrum's Law; Hyrum's law

Wikipedia

Application binary interface

In computer software, an application binary interface (ABI) is an interface between two binary program modules. Often, one of these modules is a library or operating system facility, and the other is a program that is being run by a user.

An ABI defines how data structures or computational routines are accessed in machine code, which is a low-level, hardware-dependent format. In contrast, an API defines this access in source code, which is a relatively high-level, hardware-independent, often human-readable format. A common aspect of an ABI is the calling convention, which determines how data is provided as input to, or read as output from, computational routines. Examples of this are the x86 calling conventions.

Adhering to an ABI (which may or may not be officially standardized) is usually the job of a compiler, operating system, or library author. However, an application programmer may have to deal with an ABI directly when writing a program in a mix of programming languages, or even compiling a program written in the same language with different compilers.